home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 November / PCWorld_2006-11_cd.bin / domacnost a kancelar / findgraph / fgraph.exe / {app} / TestVC / MainFrm.cpp < prev    next >
C/C++ Source or Header  |  2002-08-09  |  3KB  |  141 lines

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "Crov.h"
  6.  
  7. #include "MainFrm.h"
  8.  
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CMainFrame
  17.  
  18. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  19.  
  20. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  21.     //{{AFX_MSG_MAP(CMainFrame)
  22.     ON_WM_CREATE()
  23.     ON_COMMAND(ID_FILEDROPDOWN, OnFiledropdown)
  24.     //}}AFX_MSG_MAP
  25. END_MESSAGE_MAP()
  26.  
  27. static UINT indicators[] =
  28. {
  29.     ID_SEPARATOR,           // status line indicator
  30.     ID_INDICATOR_MOUSE,
  31.     ID_INDICATOR_CAPS,
  32.     ID_INDICATOR_NUM,
  33.     ID_INDICATOR_SCRL,
  34. };
  35.  
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CMainFrame construction/destruction
  38.  
  39. CMainFrame::CMainFrame()
  40. {
  41.     // TODO: add member initialization code here
  42.     
  43. }
  44.  
  45. CMainFrame::~CMainFrame()
  46. {
  47. }
  48.  
  49. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  50. {
  51.     if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  52.         return -1;
  53.     
  54.     if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  55.         | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  56.         !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  57.     {
  58.         TRACE0("Failed to create toolbar\n");
  59.         return -1;      // fail to create
  60.     }
  61. /*
  62.     // add dropdown button, but only if comctl32 version >= 4.71 (IE 4)
  63.     //
  64.     if (CFixMFCToolBar::iVerComCtl32 >= 471)
  65.     {
  66.         m_wndToolBar.AddDropDownButton(ID_FILE_OPEN, IDR_FILEDROPDOWN, TRUE);
  67.     }
  68. */
  69.  
  70.  
  71.     if (!m_wndStatusBar.Create(this) ||
  72.         !m_wndStatusBar.SetIndicators(indicators,
  73.           sizeof(indicators)/sizeof(UINT)))
  74.     {
  75.         TRACE0("Failed to create status bar\n");
  76.         return -1;      // fail to create
  77.     }
  78.  
  79.     // TODO: Delete these three lines if you don't want the toolbar to
  80.     //  be dockable
  81.     m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  82.     EnableDocking(CBRS_ALIGN_ANY);
  83.     DockControlBar(&m_wndToolBar);
  84.     // install/load cool menus
  85.     m_menuManager.Install(this, &m_wndToolBar);
  86.  
  87.     return 0;
  88. }
  89.  
  90.  
  91. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  92. {
  93.     if( !CFrameWnd::PreCreateWindow(cs) )
  94.         return FALSE;
  95.     // TODO: Modify the Window class or styles here by modifying
  96.     //  the CREATESTRUCT cs
  97.  
  98.     return TRUE;
  99. }
  100.  
  101. /////////////////////////////////////////////////////////////////////////////
  102. // CMainFrame diagnostics
  103.  
  104. #ifdef _DEBUG
  105. void CMainFrame::AssertValid() const
  106. {
  107.     CFrameWnd::AssertValid();
  108. }
  109.  
  110. void CMainFrame::Dump(CDumpContext& dc) const
  111. {
  112.     CFrameWnd::Dump(dc);
  113. }
  114.  
  115. #endif //_DEBUG
  116.  
  117. /////////////////////////////////////////////////////////////////////////////
  118. // CMainFrame message handlers
  119.  
  120.  
  121. void CMainFrame::IndicatorMouse(CString strInfo)
  122. {
  123.     m_wndStatusBar.SetPaneText(m_wndStatusBar.CommandToIndex(ID_INDICATOR_MOUSE), strInfo, true);
  124. }
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135. // impplement in CoolMenu.cpp
  136. // this function is need to protect wizard disable button
  137. void CMainFrame::OnFiledropdown() 
  138. {
  139.     return;    
  140. }
  141.